aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/groups/[groupId]/stats/totals.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/groups/[groupId]/stats/totals.tsx')
-rw-r--r--src/app/groups/[groupId]/stats/totals.tsx34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/app/groups/[groupId]/stats/totals.tsx b/src/app/groups/[groupId]/stats/totals.tsx
new file mode 100644
index 0000000..aa32037
--- /dev/null
+++ b/src/app/groups/[groupId]/stats/totals.tsx
@@ -0,0 +1,34 @@
+'use client'
+import { TotalsGroupSpending } from '@/app/groups/[groupId]/stats/totals-group-spending'
+import { TotalsYourShare } from '@/app/groups/[groupId]/stats/totals-your-share'
+import { TotalsYourSpendings } from '@/app/groups/[groupId]/stats/totals-your-spending'
+import { getGroup, getGroupExpenses } from '@/lib/api'
+import { useActiveUser } from '@/lib/hooks'
+
+export function Totals({
+ group,
+ expenses,
+ totalGroupSpendings,
+}: {
+ group: NonNullable<Awaited<ReturnType<typeof getGroup>>>
+ expenses: NonNullable<Awaited<ReturnType<typeof getGroupExpenses>>>
+ totalGroupSpendings: number
+}) {
+ const activeUser = useActiveUser(group.id)
+ console.log('activeUser', activeUser)
+
+ return (
+ <>
+ <TotalsGroupSpending
+ totalGroupSpendings={totalGroupSpendings}
+ currency={group.currency}
+ />
+ {activeUser && activeUser !== 'None' && (
+ <>
+ <TotalsYourSpendings group={group} expenses={expenses} />
+ <TotalsYourShare group={group} expenses={expenses} />
+ </>
+ )}
+ </>
+ )
+}